home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / New System Software Extensions / OpenDoc A6 / SOM / OpenDoc and SOM / IDL / DgItmItr.idl < prev    next >
Encoding:
Text File  |  1994-04-19  |  1.3 KB  |  52 lines  |  [TEXT/MPS ]

  1. //# Copyright:    © 1993-94 by Apple Computer, Inc., all rights reserved.
  2. #ifndef _DGITMITR_
  3. #define _DGITMITR_
  4.  
  5. #ifndef _ODOBJECT_
  6. #include "ODObject.idl"
  7. #endif
  8.  
  9. //=====================================================================================
  10. // Classes defined in this interface
  11. //=====================================================================================
  12. interface  ODDragItemIterator;
  13.  
  14. //=====================================================================================
  15. // Classes used by this interface
  16. //=====================================================================================
  17.  
  18. interface  ODStorageUnit;
  19.  
  20. //=====================================================================================
  21. // Implementation Types
  22. //=====================================================================================
  23.  
  24.  
  25. //=====================================================================================
  26. // ODDragItemIterator
  27. //=====================================================================================
  28.  
  29. interface ODDragItemIterator : ODObject
  30. {
  31.     
  32.     ODStorageUnit   First();
  33.     ODStorageUnit   Next();
  34.     ODBoolean        IsNotComplete();
  35.  
  36. #ifdef __SOMIDL__
  37.   implementation
  38.   {
  39.     override:
  40.         somInit,
  41.         somUninit;
  42.     releaseorder:
  43.         InitDragItemIterator,
  44.         First,
  45.         Next,
  46.         IsNotComplete;
  47.   };
  48. #endif
  49. };
  50.  
  51. #endif  // _DGITMITR_
  52.